home *** CD-ROM | disk | FTP | other *** search
/ Amiga News 95 / Amiga News 95.iso / dpat / dpat13 / sources / sources.lha / variables_globales.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-16  |  1.5 KB  |  63 lines

  1.  
  2. #ifndef VARIABLES_GLOBALES_H
  3. #define VARIABLES_GLOBALES_H
  4. /*
  5. **      $Filename: Variables_Globales.h $
  6. **      $Revision: 2.1 $
  7. **      $Release: 2.21 $
  8. **      $Date : 92/09/16 $
  9. **
  10. **
  11. **      (C) Copyright 1992 David Scrève
  12. **          All Rights Reserved
  13. */
  14.  
  15.  
  16. #include <exec/types.h>
  17.  
  18. /* Nombre d'emprunt du programme */
  19. /* utilisé dans win_consul.h mais déclaré ici pour compatibilité avec */
  20. /* les différentes clauses Include de autres modules */
  21. LONG NbEmprunts;
  22.  
  23. /* this the number of the first and the last disk which are read */
  24. /* from the icon of the application */
  25. LONG FirstDisk;
  26.  
  27.  
  28. struct FileHandle *adherents,*prog,*emprunts,*categorie,*disk,*nouveautes;
  29. struct FileHandle *commandes, *progX;
  30.  
  31. LONG nombreoctets;
  32.  
  33. char texte[STD_STRING_LEN];
  34. char news_nom[STD_STRING_LEN],emprunts_nom[STD_STRING_LEN];
  35. char prog_nom[STD_STRING_LEN],progX_nom[STD_STRING_LEN];
  36.  
  37. char AppliName[STD_STRING_LEN]; /* nom de l'application */
  38.  
  39. char CateDir_nom[STD_STRING_LEN],DiskDir_nom[STD_STRING_LEN];
  40. char AdherentDir[STD_STRING_LEN];
  41. char TempoDir[STD_STRING_LEN];
  42.  
  43. char FileName_Emprunts[]="NE_PAS_TOUCHER_DOMPUB";
  44. struct FileHandle *DoNotTouch;
  45.  
  46. LONG retour;
  47. struct programme prgme;
  48. struct adhrent adherent;
  49.  
  50. char AgnusText[STD_STRING_LEN];
  51. char DeniseText[STD_STRING_LEN];
  52. char GenlockText[STD_STRING_LEN];
  53.  
  54. char AppliTitle[EXSTD_STRING_LEN];
  55.  
  56. char Version[]="2.21";
  57. char Revision[]="6.51";
  58. char date[]="16 Septembre 1992";
  59. LONG Langage;
  60.  
  61. BOOL DemoVersion = FALSE;
  62.  
  63. #endif  /* VARIABLES_GLOBALES_H */